
body { margin: 0; font-family: 'Poppins', sans-serif; background: var(--dark); }

.premium-hero {
    height: 100vh;
    width: 100%;
    background: url('/images/file_00000000c9ec72069f3f465e3bc1536b.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
     --gold: #37d485;
    --dark: #0a0a0a;
}

/* Isse poori website par smooth scrolling active ho jayegi */
html {
    scroll-behavior: smooth;
}

/* Agar aapka header fixed hai, toh ye gap maintain karega */
#franchise-details {
    scroll-margin-top: 80px; 
}

/* Button ko link ki tarah behave karne ke liye styling fix */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Glassmorphism Card with Slant */
.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: skewX(-5deg); /* Cross look for the container */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.content-wrapper {
    transform: skewX(5deg); /* Text ko seedha rakhne ke liye back-skew */
    text-align: center;
}

.franchise-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    color: white;
    margin-bottom: 20px;
}

.line-1 {
    display: block;
    transform: translateX(-20px);
    transition: 0.5s ease;
    opacity: 0.9;
}

.line-2 {
    display: block;
    color: var(--gold);
    transform: translateX(20px);
    transition: 0.5s ease;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Divider Line */
.divider {
    height: 4px;
    width: 0;
    background: var(--gold);
    margin: 20px auto;
    transition: width 0.8s ease;
}

/* Hover Animations (Desktop) */
.glass-container:hover {
    transform: skewX(0deg) scale(1.02);
    border-color: var(--gold);
}

.glass-container:hover .line-1, 
.glass-container:hover .line-2 {
    transform: translateX(0);
}

.glass-container:hover .divider {
    width: 100%;
}

/* Mobile Animation (Auto-Play) */
@media (max-width: 768px) {
    .glass-container {
        padding: 30px;
        transform: skewX(-3deg);
        animation: mobileFloat 4s infinite alternate ease-in-out;
    }
    
    .line-1, .line-2 {
        transform: translateX(0);
    }
    
    .divider { width: 60%; }
}

@keyframes mobileFloat {
    from { transform: skewX(-3deg) translateY(0); }
    to { transform: skewX(3deg) translateY(-15px); }
}

/* Premium Button */
.cta-btn {
    background: transparent;
    color: white;
    border: 1px solid var(--gold);
    padding: 12px 35px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.4s;
}

.cta-btn:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 30px var(--gold);
}

:root {
            --primary-green: #1a512e;
            --accent-green: #4ade80;
            --glass-bg: rgba(255, 255, 255, 0.9);
        }

        body { font-family: 'Plus Jakarta Sans', sans-serif; background: #fdfdfd; }

        /* Premium Gradient Background */
        .franchise-section {
            padding: 100px 0;
            background: radial-gradient(circle at top right, #f0fff4, #ffffff);
            overflow: hidden;
        }

        /* Glassmorphism Card */
        .main-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease;
        }

        .main-card:hover { transform: translateY(-5px); }

        /* Feature Icons Animation */
        .feature-icon-box {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .feature-item:hover .feature-icon-box {
            background: var(--accent-green);
            transform: rotateY(180deg);
        }

        /* Section Image with Glow */
        .img-wrapper {
            position: relative;
            z-index: 1;
        }

        .img-wrapper::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: var(--accent-green);
            opacity: 0.1;
            border-radius: 30px;
            z-index: -1;
        }

        .img-premium {
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            object-fit: cover;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .franchise-section { padding: 60px 0; }
            .main-card { padding: 30px 20px; border-radius: 20px; }
            .display-5 { font-size: 2rem; font-weight: 800; }
        }

        :root {
            --primary: #1e5128;
            --secondary: #4e944f;
            --accent: #83bd75;
            --light: #e9efc0;
        }

        body { font-family: 'Plus Jakarta Sans', sans-serif; background: #fbfcf8; color: #333; }

        /* Section Header */
        .section-title { font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
        
        /* Premium Card Design */
        .agro-card {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 24px;
            padding: 30px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .agro-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(30, 81, 40, 0.12);
            border-color: var(--secondary);
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: var(--light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            font-size: 24px;
            margin-bottom: 20px;
        }

        /* List Styling */
        .agro-list { list-style: none; padding: 0; }
        .agro-list li { 
            padding-left: 28px; 
            position: relative; 
            margin-bottom: 12px; 
            font-size: 0.95rem;
            color: #555;
        }
        .agro-list li::before {
            content: "\F272"; /* Bootstrap bi-check-circle */
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        /* Tech Section Overlay */
        .tech-bg {
            background: linear-gradient(135deg, var(--primary) 0%, #0c2b14 100%);
            border-radius: 40px;
            padding: 60px;
            color: white;
            margin-top: 80px;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .tech-bg { padding: 30px 20px; border-radius: 25px; }
            .agro-card { padding: 20px; }
        }


        :root {
            --agro-green: #1a4d2e;
            --agro-gold: #b8860b;
            --soft-green: #f0f7f0;
            --premium-white: #ffffff;
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: #f4f7f4;
            background-image: url("https://www.transparenttextures.com/patterns/leaf.png"); /* Agri Pattern */
        }

        .comparison-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,1);
            padding: 60px 25px;
            box-shadow: 0 40px 120px rgba(0,0,0,0.1);
            margin: 50px auto;
        }

        .section-header h1 {
            font-weight: 800;
            color: var(--agro-green);
            font-size: 2.8rem;
        }

        /* Table Design */
        .table-responsive { border-radius: 25px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
        
        .premium-table { margin-bottom: 0; background: white; }
        .premium-table thead th {
            background: var(--agro-green);
            color: white;
            padding: 25px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
        }

        .param-cell { 
            background: #fcfdfc; 
            font-weight: 700; 
            color: #333; 
            width: 22%; 
            border-right: 1px solid #eee !important;
            padding: 18px 20px !important;
        }

        .agro-cell { 
            background: rgba(26, 77, 46, 0.02); 
            color: var(--agro-green); 
            font-weight: 600; 
            width: 39%; 
            padding: 18px 25px !important;
        }

        .trad-cell { 
            color: #6c757d; 
            width: 39%; 
            padding: 18px 25px !important;
        }

        /* Hover Effect */
        .premium-table tbody tr { transition: all 0.3s ease; border-bottom: 1px solid #f2f2f2; }
        .premium-table tbody tr:hover { 
            background: #fff !important; 
            transform: scale(1.01); 
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            z-index: 2;
            position: relative;
        }

        .badge-agro {
            background: var(--agro-green);
            color: white;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .icon-check { color: var(--agro-green); font-size: 1.2rem; margin-right: 10px; }
        .icon-cross { color: #e74c3c; font-size: 1.1rem; margin-right: 10px; }

        /* Mobile Layout */
        @media (max-width: 991px) {
            .premium-table thead { display: none; }
            .premium-table, .premium-table tbody, .premium-table tr, .premium-table td { display: block; width: 100%; }
            .premium-table tr { margin-bottom: 25px; border: 1px solid #e0e0e0; border-radius: 20px; padding: 15px; background: white; }
            .param-cell { background: var(--soft-green); text-align: center; border-radius: 12px; margin-bottom: 10px; border: none !important; width: 100%; }
            .agro-cell::before { content: "AGROACRES ADVANTAGE"; display: block; font-size: 0.7rem; color: var(--agro-gold); font-weight: 800; margin-bottom: 5px; }
            .trad-cell::before { content: "TRADITIONAL RETAILER"; display: block; font-size: 0.7rem; color: #999; font-weight: 800; margin-top: 10px; margin-bottom: 5px; }
            .agro-cell, .trad-cell { border: none !important; padding: 10px 0 !important; width: 100%; }
        }

        body {
    position: relative;
    background-color: #fbfdfb; /* Clean White-Green Base */
}

:root {
            --primary: #1a4d2e;
            --gold: #b8860b;
            --glass: rgba(255, 255, 255, 0.9);
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: #f4f7f4;
            overflow-x: hidden;
        }

        /* --- PREMIUM WATERMARK & BG --- */
        body::before {
            content: "AGROACRES";
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) rotate(-30deg);
            font-size: 12vw; font-weight: 900;
            color: rgba(26, 77, 46, 0.03);
            z-index: -1; pointer-events: none;
        }

        body::after {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("https://www.transparenttextures.com/patterns/leaf.png");
            opacity: 0.3; z-index: -2;
        }

        /* --- TABS STYLING --- */
        .nav-pills .nav-link {
            border-radius: 50px;
            padding: 15px 35px;
            font-weight: 700;
            color: var(--primary);
            background: white;
            margin: 0 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: 0.4s;
        }

        .nav-pills .nav-link.active {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        /* --- CONTENT CARDS --- */
        .ecosystem-card {
            background: var(--glass);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,1);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        }

        .feature-box {
            background: white;
            border-radius: 20px;
            padding: 25px;
            height: 100%;
            border-bottom: 4px solid transparent;
            transition: 0.3s;
        }

        .feature-box:hover {
            border-bottom: 4px solid var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .icon-header {
            width: 50px; height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .bullet-list { list-style: none; padding: 0; }
        .bullet-list li { margin-bottom: 10px; padding-left: 25px; position: relative; font-size: 0.95rem; }
        .bullet-list li::before {
            content: "\F272"; font-family: "bootstrap-icons";
            position: absolute; left: 0; color: var(--gold);
        }

        /* --- WHY SECTION --- */
        .why-tag {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            display: inline-block;
            margin: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* --- MOBILE OPTIMIZATION --- */
        @media (max-width: 768px) {
            .nav-pills { flex-direction: column; gap: 10px; }
            .nav-link { margin: 0; width: 100%; text-align: center; }
            .section-header h1 { font-size: 1.8rem; }
            .ecosystem-card { padding: 25px 15px; border-radius: 20px; }
        }

        /* --- Premium CTA Styling --- */
    .cta-container {
        padding: 80px 20px;
        text-align: center;
        background: transparent;
    }

    .premium-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 20px 50px;
        font-size: 1.25rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #ffffff;
        background: linear-gradient(135deg, #1a4d2e 0%, #2d7a44 100%);
        border: none;
        border-radius: 100px;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 0 15px 35px rgba(26, 77, 46, 0.3);
        text-decoration: none;
        z-index: 1;
    }

    /* Floating Glow Effect */
    .premium-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
        transition: 0.6s;
        z-index: 2;
    }

    .premium-btn:hover::before {
        left: 100%;
    }

    /* Hover Physics */
    .premium-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 25px 50px rgba(26, 77, 46, 0.4);
        background: linear-gradient(135deg, #2d7a44 0%, #1a4d2e 100%);
        color: #fff;
    }

    .premium-btn:active {
        transform: scale(0.95);
    }

    /* Icon Animation */
    .btn-icon {
        margin-left: 15px;
        transition: transform 0.4s ease;
        display: inline-flex;
        align-items: center;
    }

    .premium-btn:hover .btn-icon {
        transform: translateX(8px) scale(1.2);
    }

    /* Mobile Text Size */
    @media (max-width: 768px) {
        .premium-btn {
            padding: 15px 35px;
            font-size: 1rem;
            width: 90%; /* Mobile par full width touch target */
        }
    }

    /* Subtext styling */
    .cta-subtext {
        display: block;
        margin-top: 20px;
        color: #1a4d2e;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 1px;
        opacity: 0.7;
    }

      .premium-footer {
    background: #0d1b15;
    color: #ffffff;
    padding: 30px 20px 15px; /* Height choti karne ke liye compact padding */
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-overlay {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo - Height Adjusted */
.footer-logo img {
    height: 102px; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-logo:hover img { transform: scale(1.1); }

/* Contact Links with Hover Effects */
.footer-info-center { margin-bottom: 20px; }
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.contact-item i { color: #40916c; font-size: 1.2rem; }
.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

/* Underline Hover Effect */
.hover-underline { position: relative; }
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -2px; left: 0;
    background-color: #40916c;
    transition: width 0.3s ease;
}
.hover-underline:hover { color: #ffffff; }
.hover-underline:hover::after { width: 100%; }

.contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Social Icons (Super Hover) */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}
.social-btn:hover {
    background: #40916c;
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(64, 145, 108, 0.4);
}

/* Compact Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
    margin: 20px 0 10px;
}
.footer-nav a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}
.footer-nav a:hover { color: #40916c; letter-spacing: 1px; }

/* Bottom Section */
.footer-bottom {
    font-size: 0.75rem;
    color: #718096;
    padding-top: 10px;
}
.footer-bottom span { color: #40916c; font-weight: 700; }
.footer-bottom a { color: #40916c; text-decoration: none; font-weight: bold; }

/* Mobile View */
@media (max-width: 768px) {
    .contact-row { flex-direction: column; gap: 5px; }
    .footer-nav { gap: 10px; }
}


